comment
Comment object.
Properties
Name | Type | Description |
---|---|---|
Id | string | The comment ID. |
Data | CommentData | An object which contains the comment data. |
Type
Object
Example
let comment = {
"Id": "1_631",
"Data": {
"UserName": "John Smith",
"Text": "comment",
"Time": "1662737941471",
"Solved": true,
"Replies": [
{
"UserName": "Mark Potato",
"Text": "reply 1",
"Time": "1662740895892",
"Solved": false
}
]
}
}